home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol E-14 / Vol E-14.iso / games / subtract.swf / scripts / frame_4 / DoAction.as
Text File  |  2014-03-11  |  448b  |  21 lines

  1. if(_root.points == 0)
  2. {
  3.    finaltext = "NO LUCK, TRY AGAIN.";
  4. }
  5. else if(_root.points == 1)
  6. {
  7.    finaltext = "YOU CALCULATED ONLY ONE CORRECTLY, TRY AGAIN.";
  8. }
  9. else if(_root.points == 6)
  10. {
  11.    finaltext = "YOU MADE ONLY ONE MISTAKE, TRY AGAIN.";
  12. }
  13. else if(_root.points == 7)
  14. {
  15.    finaltext = "WOOW!! EVERYTHING CORRECT!!";
  16. }
  17. else
  18. {
  19.    finaltext = "YOU MADE IT " + _root.points.toString() + " OUT OF 7 TIMES. TRY TO BEAT THAT.";
  20. }
  21.